home *** CD-ROM | disk | FTP | other *** search
/ Champak 28 / Volume 28 - JOGO DISK .iso / Games / arc_triumph.swf / scripts / frame_14 / DoAction.as
Text File  |  2006-09-25  |  381b  |  20 lines

  1. curtimer = getTimer();
  2. ingametime = curtimer - startimer;
  3. timeremaining = mplaytime - ingametime;
  4. cseconds = int(timeremaining / 1000);
  5. cmins = int(cseconds / 60);
  6. csecs = int(cseconds - cmins * 60);
  7. if(9 >= csecs)
  8. {
  9.    csecs = "0" + csecs;
  10. }
  11. ctime = cmins + ":" + csecs;
  12. if(completed == 20)
  13. {
  14.    gotoAndPlay(16);
  15. }
  16. if(timeremaining < 1)
  17. {
  18.    gotoAndPlay(17);
  19. }
  20.